From: Richard M. Stallman Date: Tue, 17 Feb 2004 00:48:44 +0000 (+0000) Subject: (Describing Characters): Fix text-char-description example output. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~24044 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=450739122919ff372940d8cca5ec768a51e79ce9;p=emacs.git (Describing Characters): Fix text-char-description example output. --- diff --git a/lispref/help.texi b/lispref/help.texi index dc14b0226b5..9a55ebf6724 100644 --- a/lispref/help.texi +++ b/lispref/help.texi @@ -432,7 +432,8 @@ This function returns a string describing @var{character} in the standard Emacs notation for characters that appear in text---like @code{single-key-description}, except that control characters are represented with a leading caret (which is how control characters in -Emacs buffers are usually displayed). +Emacs buffers are usually displayed) and character codes 128 +and above are not treated as Meta characters. @smallexample @group @@ -441,11 +442,11 @@ Emacs buffers are usually displayed). @end group @group (text-char-description ?\M-m) - @result{} "M-m" + @result{} "\xed" @end group @group (text-char-description ?\C-\M-m) - @result{} "M-^M" + @result{} "\x8d" @end group @end smallexample @end defun